home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C ++ / Applications / Conic Sections 0.9.2 / Include / EquNew.h < prev    next >
Encoding:
Text File  |  1997-05-18  |  381 b   |  20 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __EQUNEW_H
  5. #define __EQUNEW_H
  6.  
  7. #include "DocContent.h"
  8.  
  9. class TEquNew:
  10.     public TDocContent
  11. {
  12. protected:
  13.     virtual SInt8 DXDivY( int, int, unsigned char*, unsigned char* );
  14.     virtual void DrawSelf( TDrawSlate* );
  15.     TConic *mConic;
  16. public:
  17.     TEquNew( TLayoutBranch*, MActionHandler*, Boolean, TPlane*, TConic* );
  18. };
  19.  
  20. #endif